home *** CD-ROM | disk | FTP | other *** search
/ BigMax 21 / BigMax nº 21 Super EF2000 / BigMax nº 21 Super EF2000.iso / extras.dxr / 00084_Video Rewind.ls < prev    next >
Encoding:
Text File  |  1998-06-25  |  734 b   |  28 lines

  1. property videoSprite
  2.  
  3. on mouseUp me
  4.   set the movieTime of sprite the videoSprite of me to 0
  5.   set the member of sprite the currentSpriteNum to "Rewalto"
  6. end
  7.  
  8. on getPropertyDescriptionList
  9.   set p_list to [#videoSprite: [#comment: "Video Sprite Channel:", #format: #integer, #default: 1]]
  10.   return p_list
  11. end
  12.  
  13. on getBehaviorDescription
  14.   return "Rewinds a digital video sprite in the current frame. Attach to a button with the appropriate label." & RETURN & "PARAMETERS:" & RETURN & "ΓÇó Video Sprite - Enter the number of the sprite channel in which the video is displayed."
  15. end
  16.  
  17. on mouseEnter me
  18.   cursor(280)
  19. end
  20.  
  21. on mouseLeave me
  22.   cursor(-1)
  23. end
  24.  
  25. on mouseDown me
  26.   set the member of sprite the currentSpriteNum to "Rewbaixo"
  27. end
  28.